Declare @Id Int                               
Select @Id = Id From sysobjects Where Name = 'Over_Under'
if not Exists(SELECT id FROM syscolumns WHERE id = @Id  and Name = 'Miscellaneous')
ALTER TABLE Over_Under ADD  Miscellaneous  varchar(5) Null
